home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / mtic132d.zip / MFM_ENG.RAR / MT_FLIST.MFM < prev    next >
Text File  |  1996-09-04  |  5KB  |  119 lines

  1. ;*****************************************************************
  2. ; MegaTIC     FILELIST TEMPLATE FILE
  3. ; for MegaTIC Copyright (c) by DiMeS 1995,96. All rights reserved.
  4. ;*****************************************************************
  5. ;
  6. ; ■ KEYWORDS
  7. ;
  8. ; The doublepoint ":" significates the start of a new chapter, followed by
  9. ; a keyword.
  10. ;
  11. ; :FLHEADER   (1) The header will be displayed at the beginning of 
  12. ;                 a filelist
  13. ; :AREASTART  (2) This header will introduce the start of a filearea
  14. ; :FILELOOP   (3) With this format the files in a filearea are displayed
  15. ; :AREAEND    (4) The end of a filearea
  16. ; :TOTALEND   (5) The total end of an filelist
  17. ; :FLFOOTER   (6) The footer is linked at the end of the filelist
  18. ;
  19. ;
  20. ; ■ MACROS
  21. ;
  22. ; You can use the following macros to create announcements
  23. ;
  24. ; Makroname           Funktion                    Klasse  Beispiel
  25. ;
  26. ; @year               Current year                all     1996
  27. ; @monthname          Name of month               all     June
  28. ; @month              Month                       all     06
  29. ; @dayname            Name od day                 all     Tuesday
  30. ; @day                Day                         all     02
  31. ; @sysopname          Name of Sysop               all     Dirk Mertens
  32. ; @bbsname            Name of BBS                 all     OxyGEN BBS
  33. ; @location           Location of BBS             all     Muenster
  34. ; @filterdlc          filter out downloadcounter  all    
  35. ; @filename           Name der Datei                 3    MTIC121O.RAR
  36. ; @filename           Name of file                   3    MTIC121O.RAR
  37. ; @filesizekb         Filesize in kb                 3    653
  38. ; @filesize           Filesize                       3    654.284
  39. ; @filedate           Filedate                       3    07/12/96
  40. ; @fileday            Day of filedate                3    12
  41. ; @filemonth          Month of filedate              3    07
  42. ; @fileyear           Year of filedate               3    1996
  43. ; @filedesc           1st line of description        3    MegaTIC v1.21
  44. ; @overflow           other lines of desc.           3    (c) Copyright 1995,
  45. ; @areaname           Name of filearea             2,3,4  MEGATIC
  46. ; @areadesc           Description of filearea      2,3,4  Tools for MegaTIC
  47. ; @areanum            BBS-Number of filearea       2,3,4  264
  48. ; @areasum            Numer of listed files          4    12
  49. ; @areasize           Sum of filesizes               4    1.243.435
  50. ; @totalsum           Number of all files           5,6   143
  51. ; @totalsize          Sum of all filesizes          5,6   12.234.234
  52. ; @totalareas         Number of done fileareas      5,6   25
  53. ; @mtversion          Current MegaTIC-Version      all    MegaTIC+ v1.21
  54. ;
  55. ;------------------------------------------------------------------------
  56. ;
  57. ;********************** EXAMPLE FOR FILELIST HEADER ********************
  58. :FLHEADER
  59.  
  60. @format(Filelist of @bbsname,78,C)
  61. @format(" on @dayname, dem @month/@day/@copy(@year,3,2)",78,C)
  62.  
  63. ;
  64. ;********************** EXAMPLE FOR AREA START *************************
  65. :AREASTART
  66. ;
  67.  
  68. ┌────────────────────────────────────────────────────────────────────────────┐
  69. │ Area @format([@areanum]: @areaname ,69,L,▒) │
  70. └────────────────────────────────────────────────────────────────────────────┘
  71. ;
  72. ;********************** EXAMPLE FOR FILE LOOP **************************
  73. :FILELOOP
  74. ;
  75. ; Example 1: Display fileinfos with full filesize
  76. ;@format(@filename,12,L) @format(@filesize,12,R) @filedate @filedesc
  77. ;                                   @overflow
  78. ;
  79. ; Example 2: Display fileinfos with kb-filesize
  80. @format(@filename,12,L) @format(@filesizekb,7,R)k @filedate @filedesc
  81.                                @overflow
  82. ;Example 3: Display fileinfos vertical
  83. ;File: @filename
  84. ;Size: @filesize bytes
  85. ;Date: @fileday.@filemonth.@fileyear
  86. ;Desc: @filedesc
  87. ;      @overflow
  88. ;
  89. ;********************** EXAMPLE FOR AREA END ***************************
  90. :AREAEND
  91. ;
  92. ┌────────────────────────────────────────────────────────────────────────────┐
  93. │ @format([@areanum] ,6,L,▒)@format(" @areasum file(s) in @areasize byte(s) ",68,C,▒) │
  94. └────────────────────────────────────────────────────────────────────────────┘
  95.  
  96. ;
  97. ;********************** EXAMPLE FOR TOTAL END **************************
  98. :TOTALEND
  99. ;
  100.  
  101. ┌────────────────────────────────────────────────────────────────────────────┐
  102. │ @format(" @totalareas filearea(s) have @totalsize bytes in in @totalsum files ",74,C,▒) │
  103. ├────────────────────────────────────────────────────────────────────────────┤
  104. │ @format(" This list was created using @mtversion (c) by DiMeS ",74,C,▒) │
  105. └────────────────────────────────────────────────────────────────────────────┘
  106.  
  107. ;
  108. ;********************** EXAMPLE FOR FILELIST FOOTER ********************
  109. :FLFOOTER
  110.  
  111.  Filerequests are possile 23 hours a day.
  112.  
  113.  Use the magic FILES to frequest a complete filelist of my system.
  114.  
  115. :
  116. ;****************************************************************
  117. ; END OF TEMPLATE EXAMPLE
  118. ;****************************************************************
  119.